home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / fredfish / 1059.lha / Programs / MathPlot / Macros / test17.rexx < prev    next >
OS/2 REXX Batch file  |  1994-12-15  |  737b  |  40 lines

  1. /* Test of getintervall2 */
  2. address "MPlot_ARexx"
  3. options results
  4.  
  5. getintervall2 stem a.
  6.  
  7. say "Mode X      " a.xmode
  8. say "Mode Y      " a.ymode
  9. say "Xstring Min " a.xmin
  10. say "Xstring Max " a.xmax
  11. say "Ystring Min " a.ymin
  12. say "Ystring Max " a.ymax
  13. say "Xreal   Min " a.xminreal
  14. say "Xreal   Max " a.xmaxreal
  15. say "Yreal   Min " a.yminreal
  16. say "Yreal   Max " a.ymaxreal
  17. say
  18.  
  19.  
  20. /* Test of Info */
  21. info stem b.
  22.  
  23. say "Screen Name " b.pubscreen
  24. say "ARexxPort   " b.arexxport
  25. say "ModeID      " b.modeid
  26. say "Colors      " b.colors
  27. say "ResX        " b.resx
  28. say "ResY        " b.resy
  29. say "LeftEdge    " b.leftedge
  30. say "TopEdge     " b.topedge
  31. say
  32.  
  33. /* Test of gettext */
  34. /* display some of the text */
  35. gettext 0
  36. say result
  37.  
  38. gettext 1
  39. say result
  40.